home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-12-16 | 1.4 KB | 47 lines | [TEXT/MPS ] |
- //========================================================================================
- //
- // File: Iters.cpp
- // Release Version: $ ODF 3 $
- //
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
- //
- //========================================================================================
-
- #include "Container.hpp"
-
- #ifndef ITERS_H
- #include "Iters.h"
- #endif
-
- #ifndef FWRUNTYP_H
- #include "FWRunTyp.h"
- #endif
-
- //========================================================================================
- // Runtime Information
- //========================================================================================
-
- #ifdef FW_BUILD_MAC
- #pragma segment odfcontainer
- #endif
-
- //========================================================================================
- // Template instantiations
- //========================================================================================
-
- #include "FWTRCtCl.tpp"
-
- FW_DEFINE_AUTO_TEMPLATE(FW_TRefCountedCollection, CProxy)
- FW_DEFINE_AUTO_TEMPLATE(FW_TRefCountedCollectionIterator, CProxy)
-
- #if FW_USE_TEMPLATE_PRAGMAS
- #pragma template_access public
- #pragma template FW_TRefCountedCollection<CProxy>
- #pragma template FW_TRefCountedCollectionIterator<CProxy>
- #endif
-
- #if FW_ANSI_TEMPLATE_INSTANTIATION
- template class FW_TRefCountedCollection<CProxy>;
- template class FW_TRefCountedCollectionIterator<CProxy>;
- #endif
-